home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Publishing / ImagePortfolio / Source / ExpandedView.h < prev    next >
Text File  |  1994-04-01  |  810b  |  25 lines

  1. // -------------------------------------------------------------------------------------
  2. // ExpandedView.h
  3. // -------------------------------------------------------------------------------------
  4. #import <appkit/View.h>
  5.  
  6. // -------------------------------------------------------------------------------------
  7. @interface ExpandedView : View
  8. {
  9.  
  10.     id            imageId;            // image id
  11.     int            imageRep;            // which rep to display
  12.     NXRect        imageFrame;            // image origin within view
  13.     BOOL        drawWithAlpha;        // draw image with alpha (composite)
  14.     float        backgroundGray;        // background gray
  15.     id            myScrollView;        // image scroller
  16.   
  17. }
  18.  
  19. // -------------------------------------------------------------------------------------
  20. - setScrollView:scrollView;
  21. - setImage:image;
  22. - windowWillResize:windowId toSize:(NXSize*)newSize;
  23.  
  24. @end
  25.